// // Copyright (c) 2009 All Right Reserved // // vl // // 2009-01-01 // Contains ... using JetBrains.Annotations; namespace LargoCommon.Music { /// Type of band. public enum InstrumentGroup { /// Type of voice. [UsedImplicitly] None = 0, /// Type of voice. [UsedImplicitly] Keyboards = 1, /// Type of voice. [UsedImplicitly] Strings = 2, /// Type of voice. [UsedImplicitly] Woodwind = 3, /// Type of voice. [UsedImplicitly] Brass = 4, /// Type of voice. [UsedImplicitly] Guitars = 5, /// Type of voice. [UsedImplicitly] Vocal = 6, /// Type of voice. [UsedImplicitly] Synthetic = 7, /// Type of voice. [UsedImplicitly] MelodicDrums = 8, /// Rhythmic section. [UsedImplicitly] Drums = 9, //// section 0 /// Rhythmic section. [UsedImplicitly] Cymbals = 10, //// section 1 /// Rhythmic section. [UsedImplicitly] Snare = 11, //// section 2 /// Rhythmic section. [UsedImplicitly] Toms = 12, //// section 3 /// Rhythmic section. [UsedImplicitly] Hihat = 13, //// section 4 /// Rhythmic section. [UsedImplicitly] Triangle = 14, //// section 5 /// Rhythmic section. [UsedImplicitly] Woodblock = 15, //// section 6 /// Rhythmic section. [UsedImplicitly] Conga = 16, //// section 7 /// Rhythmic section. [UsedImplicitly] Bonga = 17, //// section 8 /// Rhythmic section. [UsedImplicitly] Guiro = 18, //// section 9 /// Rhythmic section. [UsedImplicitly] Cuica = 19, //// section 10 /// Rhythmic section. [UsedImplicitly] Timbale = 20, //// section 11 /// Rhythmic section. [UsedImplicitly] Agogo = 21, //// section 12 /// Rhythmic section. [UsedImplicitly] Taiko = 22, //// section 13 /// Rhythmic section. [UsedImplicitly] Metronome = 23, //// section 14 /// Rhythmic section. [UsedImplicitly] Others = 24 //// section 15 } }